home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / fkeymenu.zip / FKEYMENU.BAT < prev    next >
DOS Batch File  |  1991-04-04  |  924b  |  68 lines

  1. @Echo Off
  2. :Again
  3. Cls
  4. Type MENU.DAT
  5. GETFKEY
  6. If Errorlevel 69 Goto Again
  7. If Errorlevel 68 Goto F10
  8. If Errorlevel 67 Goto F9
  9. If Errorlevel 66 Goto F8
  10. If Errorlevel 65 Goto F7
  11. If Errorlevel 64 Goto F6
  12. If Errorlevel 63 Goto F5
  13. If Errorlevel 62 Goto F4
  14. If Errorlevel 61 Goto F3
  15. If Errorlevel 60 Goto F2
  16. If Errorlevel 59 Goto F1
  17. If Errorlevel 58 Goto Again
  18. :F1
  19.   Cls
  20.   Echo This is F1
  21.   Pause
  22.   Goto Again
  23. :F2
  24.   Cls
  25.   Echo This is F2
  26.   Pause
  27.   Goto Again
  28. :F3
  29.   Cls
  30.   Echo This is F3
  31.   Pause
  32.   Goto Again
  33. :F4
  34.   Cls
  35.   Echo This is F4
  36.   Pause
  37.   Goto Again
  38. :F5
  39.   Cls
  40.   Echo This is F5
  41.   Pause
  42.   Goto Again
  43. :F6
  44.   Cls
  45.   Echo This is F6
  46.   Pause
  47.   Goto Again
  48. :F7
  49.   Cls
  50.   Echo This is F7
  51.   Pause
  52.   Goto Again
  53. :F8
  54.   Cls
  55.   Echo This is F8
  56.   Pause
  57.   Goto Again
  58. :F9
  59.   Cls
  60.   Echo This is F9
  61.   Pause
  62.   Goto Again
  63. :F10
  64.   Cls
  65.   Echo THIS IS F10 and this is the END!!!
  66.   Pause
  67. :END
  68.